@import "https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";
@import "https://fonts.googleapis.com/css2?family=Silkscreen&display=swap";
body {
  background: url("../img/miladfakurianbackgroundsombre.jpg") no-repeat center
    center/cover;
}
.container {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  transition: 0.5s;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.container.active {
  right: 300px;
}
section {
  line-height: 1.8;
  z-index: 1;
  padding: 20px 40px;
  background: url("../img/miladfakurianbackgroundsombre.jpg") no-repeat center
    center/cover;
  position: relative;
  background-attachment: fixed;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 40px 0;
}
section h3 {
  margin: 10px;
  margin-top: 30px;
}
section div p {
  margin-bottom: 10px;
}
section .problemes {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  width: 80%;
  min-height: 80px auto;
  padding: 10px;
  margin: 20px 0;
  border-radius: 10px;
  transform: translate3d(0, 0, 10px);
  box-shadow: 5px 5px 15px 10px rgba(0, 0, 0, 0.3);
  animation: boxshadow 5s infinite;
}
section .problemes .title p {
  color: #000;
  position: relative;
}
section .problemes .title p:hover:before {
  width: 100%;
}
section .problemes .title p:before {
  width: 0;
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #000;
  transition: 0.3s ease;
  animation: underline 3s 1 ease-in-out;
}
section .problemes .pb {
  width: 100%;
  display: flex;
  flex-direction: column;
  place-items: center;
}
section .problemes .pb button.probleme {
  width: 90%;
  flex-grow: 1;
  padding: 1vh;
  margin: 1vh;
  border-radius: 5px;
  border: 1px solid #000;
  background: rgba(255, 255, 255, 0.1);
  transition: 0.3s linear;
}
section .problemes .pb button.archive {
  border-width: 2px;
  text-transform: uppercase;
}
section .problemes .pb button .strong {
  font-weight: bold;
}
section .problemes .pb button .italic {
  font-style: italic;
}
section .problemes .pb button:hover {
  box-shadow: 0px 0px 20px 10px rgba(255, 255, 255, 0.82);
}
section .problemes .pb button a {
  text-decoration: none;
  color: #fff;
  all: unset;
  width: 100%;
  display: inline-block;
}
@keyframes backgroundglow {
  0% {
    background: #33135c;
  }
  50% {
    background: #33135c;
    box-shadow: 0px 15px 18px 3px #33135c;
  }
  100% {
    background: #33135c;
  }
}
@keyframes underline {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
